home *** CD-ROM | disk | FTP | other *** search
- /*
- * THE - The Hessling Editor. A text editor similar to VM/CMS xedit.
- * Copyright (C) 1991-1995 Mark Hessling
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to:
- *
- * The Free Software Foundation, Inc.
- * 675 Mass Ave,
- * Cambridge, MA 02139 USA.
- *
- *
- * If you make modifications to this software that you feel increases
- * it usefulness for the rest of the community, please email the
- * changes, enhancements, bug fixes as well as any and all ideas to me.
- * This software is going to be maintained and enhanced as deemed
- * necessary by the community.
- *
- * Mark Hessling email: M.Hessling@gu.edu.au
- * 36 David Road Phone: +61 7 849 7731
- * Holland Park Fax: +61 7 875 5314
- * QLD 4121
- * Australia
- */
-
- /*
- $Id: REXX.H 2.0 1995/01/26 16:34:39 MH Release MH $
- */
-
- #if defined(OS2)
- # if !defined(EMX)
- # include <rexxsaa.h>
- # endif
- #endif
-
- #if defined(UNIX)
- # if !defined(NOREXX)
- # include "rexxsaa.h"
- # endif
- #endif
-
- #if defined(DOS)
- # if defined(USE_QUERCUS)
- # include "regina.h"
- # endif
- # if defined(USE_REGINA)
- # include "rexxsaa.h"
- # endif
- #endif
-
- #if defined(MSWIN)
- # if !defined(NOREXX)
- typedef signed short int SHORT;
- typedef char CHAR;
- typedef CHAR *PCH;
- # include <windows.h>
- # include "wrexx.h"
- # define PSZ LPCSTR
- # define ULONG DWORD
- # define PUSHORT LPWORD
- # define PFN FARPROC
- # define PUCHAR LPBYTE
- # endif
- #endif
-
- #if defined(NOREXX)
- # include "rexxfill.h"
- #endif
-